home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-08-16 | 1.4 KB | 50 lines | [TEXT/MPS ] |
- //========================================================================================
- //
- // File: Frame.h
- // Release Version: $ ODF 1 $
- //
- // Copyright: (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
- //
- //========================================================================================
-
- #ifndef FRAME_H
- #define FRAME_H
-
- // ----- Framework Includes -----
-
- #ifndef FWFRAME_H
- #include "FWFrame.h"
- #endif
-
- //========================================================================================
- // Forward Class Desclarations
- //========================================================================================
-
- class FW_CPresentation;
- class FW_CPart;
-
- //========================================================================================
- // CLASS CNothingFrame
- //========================================================================================
-
- class CNothingFrame : public FW_CFrame
- {
- //----------------------------------------------------------------------------------------
- // Initialization/Destruction
- //
- public:
- FW_DECLARE_AUTO(CNothingFrame)
-
- CNothingFrame(Environment* ev, ODFrame* odFrame, FW_CPresentation* presentation, FW_CPart* part);
- virtual ~CNothingFrame();
-
- //----------------------------------------------------------------------------------------
- // Inherited API
- //
- public:
- virtual void Draw(Environment* ev, ODFacet* odFacet, ODShape* invalidShape);
-
- };
-
- #endif
-